projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d018584
)
Fix hang due to failure to clean up *.eln.old files at exit
author
Eli Zaretskii
<eliz@gnu.org>
Sun, 14 Mar 2021 13:36:39 +0000
(15:36 +0200)
committer
Eli Zaretskii
<eliz@gnu.org>
Sun, 14 Mar 2021 13:36:39 +0000
(15:36 +0200)
* src/comp.c (eln_load_path_final_clean_up): Call
internal_delete_file, not Fdelete_file, to ignore any errors.
(Bug#46972)
src/comp.c
patch
|
blob
|
history
diff --git
a/src/comp.c
b/src/comp.c
index 2ed893cbe04046dc0be409fadb7f2fe402ad2894..970c80226786f30bb5c9c5299855fe2056cdaf46 100644
(file)
--- a/
src/comp.c
+++ b/
src/comp.c
@@
-4616,7
+4616,7
@@
eln_load_path_final_clean_up (void)
Qt, build_string ("\\.eln\\.old\\'"), Qnil,
Qnil, Qt, return_nil);
FOR_EACH_TAIL (files_in_dir)
-
Fdelete_file (XCAR (files_in_dir), Qnil
);
+
internal_delete_file (XCAR (files_in_dir)
);
}
#endif
}